home *** CD-ROM | disk | FTP | other *** search
- /* MegaD will look for the MDARexxStart.rexx file in its home directory
- when it is first run. If it is found it will be executed.
-
- This ARexx program will clear all of the internal strings to NULL.
- */
- ADDRESS REXX
-
- OPTION RESULT
-
- ADDRESS MEGAD
-
- dbug TRUE
-
- /* Send output to a console window on the MegaD Screen */
- call close 'STDOUT'
- call open 'STDOUT','con:0/12/640/100/MegaD RX/SCREEN MEGAD', 'W'
-
- subscript = 0
- DO 40
- SAY 'Clearing string 'subscript' to NULL'
- SetString subscript NULL
- subscript = subscript + 1
- END
-